home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / x / text.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  838b  |  42 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    This is part of the X user-interface for the WAIS software.  Do with it
  6.    as you please.
  7.  
  8.    jonathan@Think.COM
  9.  *
  10.  * $Log:    text.h,v $
  11.  * Revision 1.2  92/03/17  14:17:54  jonathan
  12.  * Prototyped functions.
  13.  * 
  14.  */
  15.  
  16. #ifndef _H_TEXT
  17. #define _H_TEXT
  18.  
  19. typedef struct textbuff {
  20.   Widget    shell;
  21.   Widget    textwindow;
  22.   Widget    status;
  23.   DocumentID     docid;
  24.   char *    text;
  25.   char *    type;
  26.   long         size;
  27. } _Textbuff, *Textbuff;
  28.  
  29. typedef struct textlist {
  30.   Textbuff thisText;
  31.   struct textlist *nextText;
  32. } _TextList, *TextList;
  33.  
  34. /* functions */
  35.  
  36. TextList NewText _AP((void));
  37. void KillText _AP((Textbuff t));
  38. Textbuff findText _AP((Widget w));
  39. Textbuff findTextDoc _AP((DocumentID doc, char* type));
  40.  
  41. #endif
  42.